home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / gawk / cawf2st.zoo / makefile < prev    next >
Makefile  |  1992-04-12  |  597b  |  26 lines

  1. CC = /bin/cc
  2.  
  3. DEFS = -DUNIX -DSTDLIB
  4.  
  5. CFLAGS = -v -O -g $(DEFS)
  6.  
  7. HDR = cawf.h cawflib.h regexp.h regmagic.h
  8.  
  9. SRC = cawf.c error.c expand.c expr.c getopt.c macsup.c output.c pass2.c pass3.c regerror.c regexp.c store.c string.c
  10.  
  11. OBJ = cawf.o error.o expand.o expr.o getopt.o macsup.o output.o pass2.o pass3.o regerror.o regexp.o store.o string.o
  12.  
  13. all:    bsfilt cawf fontfilt
  14.  
  15. bsfilt: bsfilt.c
  16.     $(CC) $(CFLAGS) bsfilt.c -o bsfilt
  17.  
  18. cawf:    $(OBJ)
  19.     $(CC) $(CFLAGS) $(OBJ) -o cawf
  20.  
  21. $(OBJ):    $(HDR)
  22.  
  23. fontfilt: fontfilt.o getopt.o
  24.     $(CC) $(CFLAGS) fontfilt.o getopt.o -o fontfilt
  25.  
  26. install: bsfilt cawf fontfilt